home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 17 / CU Amiga Magazine's Super CD-ROM 17 (1997)(EMAP Images)(GB)[!][issue 1997-12].iso / CUCD / Programming / DiceSource / include / amiga20 / clib / diskfont_protos.h < prev    next >
Encoding:
C/C++ Source or Header  |  1995-01-11  |  1007 b   |  30 lines

  1. #ifndef  CLIB_DISKFONT_PROTOS_H
  2. #define  CLIB_DISKFONT_PROTOS_H
  3. /*
  4. **    $Filename: clib/diskfont_protos.h $
  5. **    $Release: 2.04 $
  6. **    $Revision: 30.156 $
  7. **    $Date: 1995/01/11 05:18:08 $
  8. **
  9. **    C prototypes. For use with 32 bit integers only.
  10. **
  11. **    (C) Copyright 1990 Commodore-Amiga, Inc.
  12. **        All Rights Reserved
  13. */
  14. /* "diskfont.library" */
  15. #ifndef  DOS_DOS_H
  16. #include <dos/dos.h>
  17. #endif
  18. #ifndef  LIBRARIES_DISKFONT_H
  19. #include <libraries/diskfont.h>
  20. #endif
  21. struct TextFont *OpenDiskFont( struct TextAttr *textAttr );
  22. LONG AvailFonts( STRPTR buffer, long bufBytes, long flags );
  23. /*--- functions in V34 or higher (distributed as Release 1.3) ---*/
  24. struct FontContentsHeader *NewFontContents( BPTR fontsLock, STRPTR fontName );
  25. void DisposeFontContents( struct FontContentsHeader *fontContentsHeader );
  26. /*--- functions in V36 or higher (distributed as Release 2.0) ---*/
  27. struct DiskFontHeader *NewScaledDiskFont( struct TextFont *sourceFont,
  28.     struct TextAttr *destTextAttr );
  29. #endif     /* CLIB_DISKFONT_PROTOS_H */
  30.